home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 April / april_2001.iso / intercd / root / Browsers / ^Enfish_Onespace / setup.exe / setup.cab / NYSE.ini < prev    next >
Encoding:
INI File  |  2000-10-11  |  1.4 KB  |  47 lines

  1. ;
  2. ; one database per ini file
  3. ;
  4. ; Database must have:
  5. ;
  6. ;     NumberOfObjects     - The number of object that will be generated for
  7. ;                           each record in the database
  8. ;     NumberOfInputFields - The number of fields each input record contains
  9. ;
  10. ; Each Object:
  11. ;
  12. ;     ObjectType          - The Object Type
  13. ;     NumberOfProps       - The number of properties to be written for this object
  14. ;     
  15. ;     For each property:
  16. ;       
  17. ;         PropertyX       - The Property Name
  18. ;         ValueX          - The value of the property
  19. ;                             $n = input field #n
  20. ;                             %n = object ID for object #n (must be previous)
  21. ;                             #n = numeric constant n
  22. ;                             string = string constant <string>
  23. ;
  24. ;     At the moment the first property of an object must be string, and must uniquely 
  25. ;     identify the object (in other words, I will look for an object of this type with
  26. ;     the first property, and if it exists I will update it, otherwise I will create it)
  27.  
  28. [DataBase]
  29. Name=New York Stock Exchange
  30. NumberOfObjects=2
  31. NumberOfInputFields=2
  32.  
  33. [Object1]
  34. ObjectType=Company
  35. NumberOfProps=1
  36. Property1=Company_Name
  37. Value1=$2
  38.  
  39. [Object2]
  40. ObjectType=Stock
  41. NumberOfProps=2
  42. Property1=Stock_Ticker_Local
  43. Value1=$1
  44. Property2=Stock_Company_ObjID
  45. Value2=%1
  46.  
  47.